home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000467_news@columbia.edu_Mon Dec 12 01:35:51 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20867
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 17 Dec 1994 12:59:43 -0500
  3. Received: by apakabar.cc.columbia.edu id AA23240
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 17 Dec 1994 12:59:42 -0500
  5. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: term type in telnet-macro (Kermit 3.14)
  9. Message-Id: <1994Dec12.073551.35191@cc.usu.edu>
  10. Date: 12 Dec 94 07:35:51 MDT
  11. References: <3bul2u$47d@infosrv.rz.unibw-muenchen.de>
  12. Organization: Utah State University
  13. Lines: 48
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <3bul2u$47d@infosrv.rz.unibw-muenchen.de>, p41bsmk@kommsrv.rz.unibw-muenchen.de (Peter Schmolck) writes:
  17. > I'm using MS-Kermit 3.14 Beta-14. My UNIX-hosts do not know what to do 
  18. > with "vt320", and when trying to adjust my mscustom.ini definitions I 
  19. > noted an inconsistency (or bug?).
  20. > The telnet macro in mskermit.ini:
  21. > define TELNET -
  22. >   set flow none,-
  23. >   set port tcp \%1 \%2,-
  24. >   pause 0, if fail end 1,-
  25. >   if def \%3 set term type \%3,-
  26. >   if succ c  
  27. > and accordingly the myhost define in mscustom.ini:
  28. >  define myhost -
  29. >    telnet myhost 23 vt320,-
  30. >    if success assign myhost telnet \v(session)
  31. > set the terminal type, and not only the TELNET-negotiated "telnet
  32. > term-type" (which I rather preferred the macro to do). When I changed the
  33. > myhost define from vt320 to vt220 the result was, that -- expectedly --
  34. > the status line entry changed to VT220, but --unexpectedly-- the remote
  35. > TELNET server still received a "VT320". (??)
  36. > BTW, mskermit.bwr says: "... to create an override string with command 
  37. >  SET TCP/IP TELNET-TERM-TYPE."
  38. >      ^^^^^^^^^^^^^^
  39. > Instead this should read either "set tcp/ip term-type" or "set telnet 
  40. > term-type".
  41. -----------
  42.     It's not your fault, it's ours.
  43.     In reality the MSK command SET PORT TCP/IP acquires just two
  44. arguments: host and port number. It doesn't look for a terminal type.
  45. The way to use a different terminal type is SET TERMINAL TYPE kind
  46. or just SET TERMINAL kind. This will pass along to the host, upon
  47. request, the same terminal type spelling we see in commands. Here is 
  48. the canned list, lifted from the code:
  49.     "UNKNOWN","H-19","VT52","VT100","VT102","VT220","VT320",
  50.     "TEK4014","VIP7809","PT200","D463","D470","wyse50","ANSI"
  51.  
  52.     As you point out, the program uses SET TCP/IP TERM-TYPE ident
  53. as the way to tell the host a different identication string than the 
  54. default method. 
  55.     The docs will be modified to be clear and correct on both items.
  56.     Thanks,
  57.     Joe D.